home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d7 / lanuts.arc / LANUTIL.MAK < prev    next >
Text File  |  1991-10-30  |  2KB  |  107 lines

  1. # Old microsoft make file for LANutils
  2. # Copyright 1991 by Jon Marbry All rights reserved
  3. #
  4. # NOTE: This makefile requires the EXEMOD utility, which seems to be
  5. # increasingly hard to find.  If you don't have it, you can safely
  6. # comment out or erase the lines in which it appears.  The only effect
  7. # will be that LANutils programs that shell out to DOS will not be able
  8. # to make quite as much memory available to the DOS shells.
  9. #
  10. compile=msc /AC /Od /DLINT_ARGS=1 /DSHAREWARE=1 $*.c;
  11. link=link /CO /STACK:4096 
  12. assemble=masm /DEZ /DMC /DSHAREWARE=1 $*.asm;
  13.  
  14. lantasti.obj: lantasti.asm
  15. $(assemble)
  16.  
  17. #    LOGIN PROGRAM
  18. login.obj: login.c
  19. $(compile)
  20.  
  21. login.exe: login.obj lantasti.obj
  22. $(link) login lantasti;
  23. exemod login /max 0
  24.  
  25. #    LOGOUT PROGRAM
  26. logout.obj: logout.c
  27. $(compile)
  28.  
  29. logout.exe: logout.obj lantasti.obj
  30. $(link) logout lantasti;
  31.  
  32. #    WAITFOR PROGRAM
  33. waitfor.obj: waitfor.c
  34. $(compile)
  35. $(link) waitfor lantasti;
  36.  
  37. #    FASTNET PROGRAM
  38. lanctl.obj: lanctl.asm
  39. $(assemble)
  40.  
  41. fastnet.obj: fastnet.c
  42. $(compile)
  43.  
  44. fastnet.exe: fastnet.obj lanctl.obj lantasti.obj
  45. $(link) fastnet lanctl lantasti;
  46.  
  47. #     MSET PROGRAM
  48. mset.obj: mset.c
  49. msc /AC /Ox /Zp mset;
  50.  
  51. mset.exe: mset.obj
  52. link mset;
  53.  
  54. #    USERLIST PROGRAM
  55. userlist.obj: userlist.c
  56. $(compile)
  57.  
  58. userlist.exe: userlist.obj lantasti.obj
  59. $(link) userlist lantasti;
  60.  
  61. #       MESSAGE PROGRAM
  62. message.obj: message.asm
  63. $(assemble)
  64. link message;
  65. com message
  66.  
  67. #    INTERCOM PROGRAM
  68. intercom.obj: intercom.asm
  69. $(assemble)
  70. link intercom;
  71. com intercom
  72.  
  73. #    RESIDENT EXTENSIONS
  74. rxm.obj: rxm.asm
  75. $(assemble)
  76. link rxm;
  77. com rxm
  78.  
  79. #     FINDUSER PROGRAM
  80. finduser.obj: finduser.c
  81. $(compile)
  82.  
  83. finduser.exe: finduser.obj
  84. $(link) finduser lantasti;
  85.  
  86. #    SENDUSER PROGRAM
  87. senduser.obj: senduser.c
  88. $(compile)
  89.  
  90. senduser.exe: senduser.obj
  91. $(link) senduser lantasti;
  92.  
  93. #     SYSTEM PROGRAM
  94. system.obj: system.c
  95. $(compile)
  96.  
  97. chkhdw.obj: chkhdw.asm
  98. $(assemble)
  99.  
  100. hardware.obj: hardware.c
  101. $(compile)
  102.  
  103. system.exe: system.obj hardware.obj chkhdw.obj
  104. $(link) system hardware chkhdw;
  105. exemod system /max 0
  106. 
  107.